2013-03-12 5 views
8

私はListviewにいくつか問題があります。リストビューには、イメージビューとテキストビューからなるリスト項目があります。 Textviewにはクリック可能なリンクが含まれています。 LinkMovementMethodをtextviewsに設定すると、listItemsはonclickイベントを受け取りません。私はまだ(=任意の適切なソリューションを見つけることができません誰もがそれを解決するかのListItem内部のクリック可能なリンクでのTextViewの使用例を与える方法explaneことができ感謝を ここでのTextViewの作成はアダプタにあります。?。Textview`s LinkMovementMethodはlistitem touchイベントをブロックします

TextView text = (TextView) ((LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE)) 
         .inflate(R.layout.post_content_text, null); 
SpannableString sString = new SpannableString(d.getText()); 
//I have my own class UrlSpan that contain fields startPosition, endPosition and urlLink 
for (UrlSpan us : ((TextData) d).getUrls()) 
       { 
        URLSpan urlSpan = new URLSpan(us.getUrl()); 
        sString.setSpan(urlSpan, us.getStart(), us.getEnd(), SpannableString.SPAN_INCLUSIVE_INCLUSIVE); 
       } 
text.setText(sString); 
text.setMovementMethod(LinkMovementMethod.getInstance()); 
view.addView(text); 

とリスト項目です:ドキュメントからあなたのリストビューに android:descendantFocusability="beforeDescendants"

をこの属性を追加する

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:visibility="visible" > 

    <LinearLayout 
     style="?PostListRow" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_margin="10dp" 
     android:orientation="vertical" 
     android:padding="10dp" > 

     <LinearLayout 
      android:layout_width="fill_parent" 
      android:layout_height="65dp" 
      android:orientation="horizontal" > 

      <ImageView 
       android:id="@+id/user_image" 
       android:layout_width="45dp" 
       android:layout_height="45dp" 
       android:layout_margin="3dp" 
       android:clickable="true" 
       android:src="@drawable/ic_no_photo" /> 

      <LinearLayout 
       android:layout_width="fill_parent" 
       android:layout_height="55dp" 
       android:layout_margin="0dp" 
       android:orientation="vertical" > 

       <TextView 
        android:id="@+id/user_title" 
        android:layout_width="fill_parent" 
        android:layout_height="0dp" 
        android:layout_weight="1" 
        android:clickable="true" 
        android:textSize="@dimen/title_in_list" /> 

       <TextView 
        android:id="@+id/post_datetime" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:layout_marginBottom="5dp" 
        android:layout_marginTop="5dp" 
        android:textSize="@dimen/text_size_small" /> 
      </LinearLayout> 

      <TextView 
       android:id="@+id/post_number" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_gravity="right" 
       android:text="123" /> 
     </LinearLayout> 
<!-- it is a view where textview with links is to be added to --> 
     <LinearLayout 
      android:id="@+id/post_data" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:orientation="vertical" 
      android:weightSum="6" > 
     </LinearLayout> 

     <TextView 
      android:id="@+id/post_view" 
      style="?PostText" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="TextView" 
      android:visibility="gone" /> 

     <LinearLayout 
      android:id="@+id/topic_edit_view" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:orientation="horizontal" > 
     </LinearLayout> 
    </LinearLayout> 

</LinearLayout> 
+0

あなたのコードを入れてください。カスタムアダプタをお持ちであれば、クリックリストにアダプタコードを入れてください... –

+1

私はあなたの投稿に出くわしました。私はそれがここで解決されたと信じています: https://stackoverflow.com/questions/8558732/listview-textview-with- linkmovementmethod-makes-list-item-unclickable – m3hughes

答えて

0

してみてください。

Viewをフォーカスするには、ViewGroupとその子孫の関係を定義します。あなたのリストビューにボタンやedittextなどのアクティブなビューがあるときは、descendantFocusabilityを定義する必要があります。

+0

この属性を追加する内容について説明することができます。 – deW1

+0

docsからは、フォーカスを取得するビューを検索するときに、ViewGroupとその子孫の関係が定義されます。 リストビューのボタンやedittextなどのアクティブビューがある場合、descendantFocusabilityを定義する必要があります。 – greenfrvr

+0

ListViewでSpannableStringとLinkMovementMethodを使用すると、子孫のフォーカスをブロックできません。おそらくあなたは、このように受け入れられた答えからアプローチを試すことができます... http://stackoverflow.com/questions/8558732/listview-textview-with-linkmovementmethod-makes-list-item-unclickable – Dallas187