editView多行光标位置问题和联系人问题

本文介绍了解决Android中EditText组件光标不在首行的问题,并提供了一个简单的解决方案。此外,还展示了如何使用ContentResolver进行联系人信息查询的具体实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1 其实android好多细节问题 很简单却很耗费时间 今天遇到 一个

<EditText android:layout_width="fill_parent" 
           
android:layout_height="wrap_content" android:gravity="center" 
           
android:singleLine="false" android:lines="5" 
           
android:layout_marginLeft="10dip" android:layout_marginRight="10dip" 
           
/> 
但是 光标不再第一行

其实很简单

android:gravity="top"  这个不仅说说文字布局 还应该加上光标布局。

2.

ContentResolver cr = context.getContentResolver(); 
String[] projection = new String[] { ContactsContract.Contacts._ID, 
               
ContactsContract.Contacts.DISPLAY_NAME}; 
Cursor c = cr.query(ContactsContract.Contacts.CONTENT_URI, projection, 
               
ContactsContract.Contacts._ID + " in ("+comma_delimited_ids+") , null, 
                ContactsContract.Contacts.DISPLAY_NAME + "
COLLATE LOCALIZED ASC"); 
if (c!=null) { 
           
for (c.moveToFirst(); !c.isAfterLast(); c.moveToNext()) { 
                       
// your code to get details from cursor 
           
}
 
            c
.close();
 
       
}
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值